home *** CD-ROM | disk | FTP | other *** search
/ Disc to the Future 2 / Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin / MAC / THINKC / 4_0 / TERMINAL / HDRS / POPUP.H < prev    next >
Text File  |  1990-11-20  |  388b  |  18 lines

  1. /*
  2.     Terminal 2.0
  3.     "Popup.h"
  4. */
  5.  
  6. typedef struct {
  7.     short item;        /* Dialog item id */
  8.     short menu;        /* Popup menu id */
  9.     MenuHandle h;    /* Popup menu handle */
  10.     short choice;    /* Current choice (1...) */
  11. } POPUP;
  12.  
  13. #define NEWPOPUP    /* Use downward pointing triangle */
  14.  
  15. Boolean PopupMousedown (DialogPtr, EventRecord *, short *);
  16. void PopupInit (DialogPtr, POPUP *);
  17. void PopupCleanup (void);
  18.